home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 February / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Klienci P2P / Multi / Shareaza 2.2.3.0 / Shareaza_2.2.3.0.exe / {app} / Schemas / shareazaSkin.xsd < prev    next >
Extensible Markup Language  |  2006-07-23  |  1KB  |  33 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <schema targetNamespace="http://www.shareaza.com/schemas/shareazaSkin.xsd" version="1.0" xmlns="http://www.w3.org/2001/XMLSchema">
  4.  
  5.     <element name="shareazaSkins">
  6.         <complexType>
  7.             <element name="shareazaSkin" type="skinType" minOccurs="1" maxOccurs="unbounded"/>
  8.         </complexType>
  9.     </element>
  10.     
  11.     <complexType name="skinType">
  12.         <all>
  13.             <attribute name="name" type="string"/>
  14.             <attribute name="author" type="string"/>
  15.             <attribute name="link" type="uriReference"/>
  16.             <attribute name="email" type="string"/>
  17.             <attribute name="version" type="decimal"/>
  18.             <attribute name="type">
  19.                 <simpleType base="string">
  20.                     <enumeration value="Skin"/>
  21.                     <enumeration value="Language"/>
  22.                 </simpleType>
  23.             </attribute>
  24.             <attribute name="language" type="string"/>
  25.             <attribute name="description" type="string"/>
  26.             <attribute name="comments" type="string"/>
  27.             <attribute name="SHA1" type="string"/>
  28.         </all>
  29.     </complexType>
  30.  
  31. </schema>
  32.  
  33.